home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FGL304D.ZIP;1 / EXBAS.ARJ / FGDOC / EXAMPLES / BASIC / 07-07.BAS < prev    next >
Encoding:
BASIC Source File  |  1994-01-24  |  218 b   |  20 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 19
  7.  
  8. FGsetcolor 14
  9. FGtext "yellow", 6
  10.  
  11. FGlocate 0, 0
  12. FGsetcolor 10
  13. FGtext " green", 6
  14. FGwaitkey
  15.  
  16. FGsetmode OldMode
  17. FGreset
  18.  
  19. END
  20.